home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / batchlrn.arc / BATDO-2.HLP < prev    next >
Text File  |  1991-06-17  |  1KB  |  24 lines

  1.             As you can see, it is much easier to type NONCOM than
  2.             it is to type the command shown in the batch file. If
  3.             you like the wide format, substitute DIR/W | FIND/V..
  4.  
  5.             Want a quick way to format files? Try this processing
  6.             file TO SAVE you time and effort:
  7.                  >COPY CON:MAKESYS.BAT
  8.                  REM PLACE A BLANK DISK IN FLOPPY DRIVE A
  9.                  PAUSE
  10.                  FORMAT.A:/S/V
  11.             This will format SYS disks with a label. Variation on
  12.             this: FORMAT A:/S or MAKEDAT.BAT=FORMAT A:(data disk).
  13.  
  14.             This next batch file could be used where several user
  15.             access is required. For example, a fixed or hard disk
  16.             situation, several users, each user having his or her
  17.             own directory.  Each user enters his or her name when
  18.             executing the batch file.The batch file then compares
  19.             this name against others and takes appropriate action.
  20.             The %1 is a replaceable parameter. The IF & GOTO cmds.
  21.             are used to transfer control to different places thru-
  22.             out the file during the course of operation.  You will
  23.             be covering all of that later, plus you have the.HLPs!
  24.